Denizen Script Language Explanations


Language Explanations explain components of Denizen in a more direct and technical way than The Beginner's Guide.


Showing 1 out of 56 language explanations...
NameGUI Element
DescriptionA GUI element is a single object in a GUI.
It takes in a required "ui_type" key, which controls its type; see the "GUI System" group on the meta docs for documentation on each type.
It also takes in optional "width" and "height" keys to control it's size, and optional "x" and "y" keys to control its position.
A GUI element's position is the position of its top left corner, relative to the top left corner of its parent element.
"parent element" refers to the GUI element this element is in, for example a button inside a plain panel.
GroupGUI System
Sourcehttps://github.com/DenizenScript/Clientizen/blob/master/src/main/java/com/denizenscript/clientizen/scripts/containers/gui/GuiScriptContainer.java#L85